crypto/tls.clientHelloMsg.cipherSuites (field)
31 uses
crypto/tls (current package)
handshake_client.go#L97: hello.cipherSuites = make([]uint16, 0, len(configCipherSuites))
handshake_client.go#L109: hello.cipherSuites = append(hello.cipherSuites, suiteId)
handshake_client.go#L140: hello.cipherSuites = nil
handshake_client.go#L143: hello.cipherSuites = append(hello.cipherSuites, defaultCipherSuitesTLS13...)
handshake_client.go#L145: hello.cipherSuites = append(hello.cipherSuites, defaultCipherSuitesTLS13NoAES...)
handshake_client.go#L346: if mutualCipherSuite(hello.cipherSuites, session.cipherSuite) == nil {
handshake_client.go#L367: for _, offeredID := range hello.cipherSuites {
handshake_client.go#L381: if mutualCipherSuiteTLS13(hello.cipherSuites, session.cipherSuite) != nil {
handshake_client.go#L524: if hs.suite = mutualCipherSuite(hs.hello.cipherSuites, hs.serverHello.cipherSuite); hs.suite == nil {
handshake_client_tls13.go#L158: selectedSuite := mutualCipherSuiteTLS13(hs.hello.cipherSuites, hs.serverHello.cipherSuite)
handshake_messages.go#L75: cipherSuites []uint16
handshake_messages.go#L298: for _, suite := range m.cipherSuites {
handshake_messages.go#L383: m.cipherSuites = []uint16{}
handshake_messages.go#L393: m.cipherSuites = append(m.cipherSuites, suite)
handshake_server.go#L347: if !hasAESGCMHardwareSupport || !aesgcmPreferred(hs.clientHello.cipherSuites) {
handshake_server.go#L362: hs.suite = selectCipherSuite(preferenceList, hs.clientHello.cipherSuites, hs.cipherSuiteOk)
handshake_server.go#L369: for _, id := range hs.clientHello.cipherSuites {
handshake_server.go#L449: for _, id := range hs.clientHello.cipherSuites {
handshake_server.go#L943: CipherSuites: clientHello.cipherSuites,
handshake_server_tls13.go#L114: for _, id := range hs.clientHello.cipherSuites {
handshake_server_tls13.go#L163: if !hasAESGCMHardwareSupport || !aesgcmPreferred(hs.clientHello.cipherSuites) {
handshake_server_tls13.go#L167: hs.suite = mutualCipherSuiteTLS13(hs.clientHello.cipherSuites, suiteID)
handshake_server_tls13.go#L537: len(ch.cipherSuites) != len(ch1.cipherSuites) ||
handshake_server_tls13.go#L549: for i := range ch.cipherSuites {
handshake_server_tls13.go#L550: if ch.cipherSuites[i] != ch1.cipherSuites[i] {
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |